JLCA Companion Reference

java.util.jar.emap

 
using "declarations.def";

package java.util.jar
	addref SHARPZIPLIB;
	
	class Attributes -> notmap
	endclass


	class Attributes.Name -> notmap
	endclass

	class JarEntry -> ICSharpCode.SharpZipLib.Zip.ZipEntry	

		member getAttributes
			a.b()     ->   notmap;
			decl()       ->      notmap;
		endmember

		member getCertificates
			a.b()     ->   notmap;	
			decl()       ->      notmap;
		endmember

		member JarEntry

			b(p:java.lang.String)  ->  new ICSharpCode.SharpZipLib.Zip.ZipEntry(p);


			b(p:java.util.zip.ZipEntry)     ->  ICSharpCode.SharpZipLib.Zip.ZipEntryJarEntry(p);


			b(p:java.util.jar.JarEntry)     ->  ICSharpCode.SharpZipLib.Zip.ZipEntry(p);

		endmember

	endclass

	class JarException -> ICSharpCode.SharpZipLib.ZipException
		member JarException

			b(p:java.lang.String)     ->  new ICSharpCode.SharpZipLib.ZipException(p);


			b()     ->  new ICSharpCode.SharpZipLib.ZipException();

		endmember

	endclass

	class JarFile -> 
						printwarning(JAR_NOT_SUPPORTED);
						ICSharpCode.SharpZipLib.Zip.ZipFile
					

		member entries
			a.b()     ->  begin
								printwarning(DIFF_RETURN_VAL);
								a.GetEnumerator();
							end
				
			decl()       ->     public overrides  System.Collections.IEnumerator GetEnumerator();
		endmember

		member getEntry
			a.b(p:java.lang.String)     ->  a.GetEntry(p);
			decl(p:java.lang.String)       ->    public  ICSharpCode.SharpZipLib.Zip.ZipEntry GetEntry(byval p:System.String);
		endmember

		member getInputStream
			a.b(p:java.util.zip.ZipEntry)     ->  a.GetInputStream(p);
			decl(p:java.util.zip.ZipEntry)       ->      notmap;
		endmember

		member getJarEntry
			a.b(p: java.lang.String)     ->  a.GetEntry(p);
			decl(p: java.lang.String)       ->      public  ICSharpCode.SharpZipLib.Zip.ZipEntry GetEntry(byval p:System.String);
		endmember

		member getManifest
			a.b()     ->   notmap;
			decl()       ->      notmap;
		endmember

		member JarFile

			b(p1:java.io.File,p2:boolean,p3:int)     ->   notmap;
			decl(p1:java.io.File,p2:boolean,p3:int)       ->      notmap;

			b(p1:java.lang.String,p2:boolean)     ->   notmap;
			decl(p1:java.lang.String,p2:boolean)       ->      notmap;

			b(p1:java.io.File,p2:boolean)     ->   notmap;
			decl(p1:java.io.File,p2:boolean)       ->      notmap;

			b(p:java.lang.String)     ->  new ICSharpCode.SharpZipLib.Zip.ZipFile(p);

			b(p:java.io.File)     ->  new ICSharpCode.SharpZipLib.Zip.ZipFile(p:System.IO.FileStream);

		endmember

		member MANIFEST_NAME
			a.b           -> notmap;
			decl()   ->      notmap;
		endmember

	endclass

	class JarInputStream ->  
								printwarning(JAR_NOT_SUPPORTED);
								ICSharpCode.SharpZipLib.Zip.ZipInputStream
							

		member createZipEntry
			a.b(p:java.lang.String)     ->   notmap;
			decl(p:java.lang.String)       ->      notmap;
		endmember

		member getManifest
			a.b()     ->   notmap;
			decl()       ->      notmap;
		endmember

		member getNextEntry
			a.b()     ->  a.GetNextEntry();
			decl()       ->     
								public  ICSharpCode.SharpZipLib.Zip.ZipEntry GetNextEntry();
		endmember

		member getNextJarEntry
			a.b()     ->  a.GetNextEntry();
			decl()       ->     
								public  ICSharpCode.SharpZipLib.Zip.ZipEntry GetNextEntry();
		endmember

		member JarInputStream

			b(p1:java.io.InputStream,p2:boolean)     ->   notmap;
			decl(p1:java.io.InputStream,p2:boolean)       ->      notmap;

			b(p:java.io.InputStream)     ->  new ICSharpCode.SharpZipLib.Zip.ZipInputStream(p);

		endmember

		member read
			a.b(p1:byte[],p2: int, p3:int)     ->  a.Read(p1,p2,p3);
			decl(p1:byte[],p2: int, p3:int)       ->      public overrides int Read(byval p1:System.Byte[], byval p2:int, byval p3:int);
		endmember

	endclass

	class JarOutputStream -> 
								printwarning(JAR_NOT_SUPPORTED);
								ICSharpCode.SharpZipLib.Zip.ZipOutputStream
							

		member JarOutputStream


			b(p1:java.io.OutputStream,p2:java.util.jar.Manifest)     ->   notmap;
			decl(p1:java.io.OutputStream,p2:java.util.jar.Manifest)       ->      notmap;

			b(p:java.io.OutputStream)     ->  new ICSharpCode.SharpZipLib.Zip.ZipOutputStream(p);

		endmember

		member putNextEntry
			a.b(p:java.util.zip.ZipEntry)     ->  a.PutNextEntry(p);
			decl(p:java.util.zip.ZipEntry)       ->     
								public  System.Void PutNextEntry(byval p:ICSharpCode.SharpZipLib.Zip.ZipEntry);
		endmember

	endclass


	class Manifest -> notmap
	endclass

endpackage

©2004 ArtinSoft. All rights reserved